func sync/atomic.LoadInt64

8 uses

	sync/atomic (current package)
		doc_64.go#L86: func LoadInt64(addr *int64) (val int64)
		type.go#L114: func (x *Int64) Load() int64 { return LoadInt64(&x.v) }

	github.com/jackc/pgx/v5/pgxpool
		pool.go#L709: 		newConnsCount:        atomic.LoadInt64(&p.newConnsCount),
		pool.go#L710: 		lifetimeDestroyCount: atomic.LoadInt64(&p.lifetimeDestroyCount),
		pool.go#L711: 		idleDestroyCount:     atomic.LoadInt64(&p.idleDestroyCount),

	google.golang.org/grpc/internal/idle
		idle.go#L124: 		m.resetIdleTimer(time.Duration(atomic.LoadInt64(&m.lastCallEndTime)-time.Now().UnixNano()) + m.timeout)

	google.golang.org/grpc/internal/transport
		http2_client.go#L1731: 			lastRead := atomic.LoadInt64(&t.lastRead)
		http2_server.go#L1242: 			lastRead := atomic.LoadInt64(&t.lastRead)